home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-01-18 | 664 b | 27 lines |
- #
- # MAKE FILE FOR XENIX systems on 80x86 machines/other platforms will have to
- # modify CFLAGS.
- # add -DALLOC if your system uses alloc() instead of malloc()
- # add -DNOSIGNAL for faster processing on a unix pc
- # add -DMAXSEG_64K if your compiler does NOT predefine M_I286 and you need
- # to allow for segmented addressing
- #for 286 machines
- CFLAGS=-c -DXENIX -DNDEBUG -Ml2e
- OFLAGS=-Ml
- #for 386 machines
- #CFLAGS=-c -DXENIX -DNDEBUG -M3e
- #OFLAGS=-s
-
- LIB=
- PROG=compress
- OBJ=compress.o compusi.o compapi.o
-
- $(PROG): $(OBJ)
- cc -o $(PROG) $(OFLAGS) $(OBJ) $(LIB)
-
- compapi.o: compress.h
- compress.o: compress.h
- compusi.o: compress.h
-
-
-